body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fffafc;
  color: #333;
}

.about-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 60px 20px;
  background: linear-gradient(180deg, #ffe0eb 0%, #fff 100%);
  overflow: visible;
}

.about-wrapper::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(230, 192, 222, 0.2) 2px, transparent 3px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}

.about-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  background: white;
  padding: 40px;
  border-radius: 20px;
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1), 0 0 10px 2px #f8bbd0;
  animation: fadeIn 1.2s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-container h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #ef7bb5;
  text-align: center;
  position: relative;
  padding-bottom: 0.3em;
}

.about-container h1::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ff81ab, #f26fb0);
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: 0 0 10px #ef6392aa;
}

.about-container p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
  color: #444;
}

.highlight {
  color: #eb68bd;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 2px rgba(179, 0, 89, 0.6);
  transition: text-shadow 0.3s ease;
}

.highlight:hover {
  text-shadow: 0 0 8px #ef509a;
  cursor: pointer;
}

.about-image {
  margin-top: 30px;
  text-align: center;
}

.about-image img {
  max-width: 260px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.caption {
  font-size: 1rem;
  color: #666;
  margin-top: 10px;
  font-style: italic;
  margin-bottom: 15px;
  align-items: center;
  align-self: center;
}

.about-image .cta-button {
  padding: 0.8em 1.5em;
  background: linear-gradient(90deg, #ef509a, #ef7bb5);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 3px 6px palevioletred;
  margin-top: 10px;
}

.about-image .cta-button:hover {
  background-color: #c2185b;
  transform: scale(1.07);
  box-shadow: 0 6px 20px rgba(194, 24, 91, 0.7);
}

.about-quote {
  margin-top: 40px;
  text-align: center;
}

.about-quote blockquote {
  font-style: italic;
  font-size: 1.2rem;
  color: #c2185b;
  background-color: #fff0f7;
  padding: 1.5em;
  border-left: 4px solid #ef509a;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: inline-block;
  max-width: 600px;
}

footer {
  text-align: center;
  padding: 1em;
  background: linear-gradient(90deg, #ffb6c1, #ffc0cb);
  font-size: 0.9em;
  color: #555;
}
/* Your base CSS stays the same */

/* Responsive adjustments */
@media (max-width: 900px) {
  .about-wrapper {
    padding: 40px 15px;
  }

  .about-container {
    padding: 30px 20px;
    max-width: 90%;
  }

  .about-container h1 {
    font-size: 2.5rem; /* smaller headline */
  }

  .about-container p {
    font-size: 1rem;
  }

  .about-image img {
    max-width: 220px;
  }

  .about-image .cta-button {
    padding: 0.7em 1.2em;
    font-size: 0.95rem;
  }

  .about-quote blockquote {
    font-size: 1rem;
    max-width: 90%;
    padding: 1em;
  }
}

@media (max-width: 600px) {
  .about-wrapper {
    flex-direction: column;
    padding: 30px 10px;
  }

  .about-container {
    border-radius: 15px;
    padding: 25px 15px;
  }

  .about-container h1 {
    font-size: 2rem;
  }

  .about-container p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .about-image img {
    max-width: 180px;
    margin-top: 20px;
  }

  .about-image .cta-button {
    width: 100%;
    text-align: center;
  }

  .about-quote blockquote {
    font-size: 0.95rem;
    max-width: 100%;
    padding: 0.8em;
  }
}

@media (max-width: 400px) {
  .about-container h1::after {
    width: 70px;
    height: 3px;
  }

  .about-container h1 {
    padding-bottom: 0.2em;
  }

  .caption {
    font-size: 0.85rem;
  }
}
